Skip to content

Commit e4cc338

Browse files
MaherJendoubiimback82
authored andcommitted
Fix typos in comments (#402)
1 parent 7459a14 commit e4cc338

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

eng/common/tools.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function Exec-Process([string]$command, [string]$commandArgs) {
8484
return $global:LASTEXITCODE = $process.ExitCode
8585
}
8686
finally {
87-
# If we didn't finish then an error occured or the user hit ctrl-c. Either
87+
# If we didn't finish then an error occurred or the user hit ctrl-c. Either
8888
# way kill the process
8989
if (-not $finished) {
9090
$process.Kill()

src/csharp/Microsoft.Spark/Sql/Column.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ public Column SubStr(int startPos, int len)
490490
/// Contains the other element. Returns a boolean column based on a string match.
491491
/// </summary>
492492
/// <param name="other">
493-
/// The object that is used to check for existance in the current column.
493+
/// The object that is used to check for existence in the current column.
494494
/// </param>
495495
/// <returns>New column after checking if the column contains object other</returns>
496496
public Column Contains(object other)

0 commit comments

Comments
 (0)