Skip to content

Commit 079a63b

Browse files
Merge pull request #10774 from changeworld/patch-4
Fix typo: orginal -> original
2 parents f24ec67 + 4c477cf commit 079a63b

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

docs/debugger/debug-interface-access/idiainputassemblyfile-get-filename.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Retrieves the orginal assembly file name.
2+
description: Retrieves the original assembly file name.
33
title: "IDiaInputAssemblyFile::get_fileName"
44
ms.date: "07/18/2024"
55
ms.topic: "reference"
@@ -15,7 +15,7 @@ ms.subservice: debug-diagnostics
1515

1616
# IDiaInputAssemblyFile::get_fileName
1717

18-
Retrieves the orginal assembly file name.
18+
Retrieves the original assembly file name.
1919

2020
## Syntax
2121

docs/debugger/debug-interface-access/idiainputassemblyfile-get-version.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Retrieves the version of the orginal assembly.
2+
description: Retrieves the version of the original assembly.
33
title: "IDiaInputAssemblyFile::get_version"
44
ms.date: "07/18/2024"
55
ms.topic: "reference"
@@ -15,7 +15,7 @@ ms.subservice: debug-diagnostics
1515

1616
# IDiaInputAssemblyFile::get_version
1717

18-
Retrieves the version of the orginal assembly.
18+
Retrieves the version of the original assembly.
1919

2020
## Syntax
2121

docs/debugger/debug-interface-access/idiainputassemblyfile.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ The following table shows the methods of `IDiaInputAssemblyFile`.
3131
|[`IDiaInputAssemblyFile::get_index`](../../debugger/debug-interface-access/idiainputassemblyfile-get-index.md)|Retrieves the file index.|
3232
|[`IDiaInputAssemblyFile::get_timestamp`](../../debugger/debug-interface-access/idiainputassemblyfile-get-timestamp.md)|Retrieves the time stamp.|
3333
|[`IDiaInputAssemblyFile::get_pdbAvailableAtILMerge`](../../debugger/debug-interface-access/idiainputassemblyfile-get-pdbavailableatilmerge.md)|Retrieves a flag that indicates whether the PDB was available at the creation of the .NET Native binary.|
34-
|[`IDiaInputAssemblyFile::get_fileName`](../../debugger/debug-interface-access/idiainputassemblyfile-get-filename.md)|Retrieves the orginal assembly file name.|
35-
|[`IDiaInputAssemblyFile::get_version`](../../debugger/debug-interface-access/idiainputassemblyfile-get-version.md)|Retrieves the version of the orginal assembly.|
34+
|[`IDiaInputAssemblyFile::get_fileName`](../../debugger/debug-interface-access/idiainputassemblyfile-get-filename.md)|Retrieves the original assembly file name.|
35+
|[`IDiaInputAssemblyFile::get_version`](../../debugger/debug-interface-access/idiainputassemblyfile-get-version.md)|Retrieves the version of the original assembly.|
3636

3737
## Remarks
3838

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_WordPad/cpp/wordpdoc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ BOOL CWordPadDoc::DoSave(LPCTSTR pszPathName, BOOL bReplace /*=TRUE*/)
319319
}
320320
END_CATCH_ALL
321321
}
322-
// restore orginal document type
322+
// restore original document type
323323
SetDocType(nOrigDocType, TRUE);
324324
EndWaitCursor();
325325
return FALSE;

docs/snippets/cpp/VS_Snippets_Winforms/DataGridTableStyle_ResetGridLineColor/CPP/datagridtablestyle_resetgridlinecolor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public ref class Form1: public Form
7777

7878
void Button1_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
7979
{
80-
// Reset the 'GridLineColor' to its orginal color.
80+
// Reset the 'GridLineColor' to its original color.
8181
myDataTableStyle->ResetGridLineColor();
8282
}
8383
// </Snippet1>

0 commit comments

Comments
 (0)