Skip to content
This repository has been archived by the owner on Jan 21, 2022. It is now read-only.

Commit

Permalink
Updated XML doc comments to remove outdated info.
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffJacobson committed Jul 12, 2017
1 parent a08693b commit ede747c
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions SpellChecker/SpellChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -220,14 +220,11 @@ private void ThrowIfDisposed() {
/// Checks the spelling of the names of all maps and layers in the table of contents.
/// </summary>
/// <param name="maps">An <see cref="IMaps"/> collection of maps.</param>
/// <param name="_WordApp">A <see cref="Word.Application"/> object.</param>
/// <param name="wordHasBeenClosed">A <see cref="bool"/> indicating if <paramref name="_WordApp"/> has been closed.</param>
/// <returns>
/// The number of items that were spellchecked. Zero will be returned under the following contiditions:
/// <list type="bullet">
/// <item><description>No mispelled items were detected.</description></item>
/// <item><description>Either <paramref name="maps"/> or <paramref name="_WordApp"/> were <see langword="null"/>.</description></item>
/// <item><description><paramref name="wordHasBeenClosed"/> is <see langword="true"/>.</description></item>
/// <item><description>Either <paramref name="maps"/>.</description></item>
/// </list>
/// </returns>
private int CheckSpellingOfTocItemNames(IMaps maps) {
Expand Down Expand Up @@ -256,14 +253,10 @@ private int CheckSpellingOfTocItemNames(IMaps maps) {
/// Checks the spelling of the text elements in an ArcMap document.
/// </summary>
/// <param name="mxDoc">An <see cref="IMxDocument">ArcMap docmuent</see>.</param>
/// <param name="_WordApp">A <see cref="Word.Application"/> object.</param>
/// <param name="wordHasBeenClosed">A <see cref="bool"/> indicating if <paramref name="_WordApp"/> has been closed.</param>
/// <returns>
/// The number of text elements that were spellchecked. Zero will be returned under the following contiditions:
/// <list type="bullet">
/// <item><description>No mispelled items were detected.</description></item>
/// <item><description>Either <paramref name="maps"/> or <paramref name="_WordApp"/> were <see langword="null"/>.</description></item>
/// <item><description><paramref name="wordHasBeenClosed"/> is <see langword="true"/>.</description></item>
/// </list>
/// </returns>
private int CheckSpellingOfTextElements(IMxDocument mxDoc) {
Expand Down

0 comments on commit ede747c

Please sign in to comment.