Skip to content
This repository was archived by the owner on Aug 5, 2024. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cpp/diff_match_patch.h
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ class diff_match_patch {

/**
* A safer version of QString.mid(pos). This one returns "" instead of
* null when the postion equals the string length.
* null when the position equals the string length.
* @param str String to take a substring from.
* @param pos Position to start the substring from.
* @return Substring.
Expand All @@ -610,7 +610,7 @@ class diff_match_patch {

/**
* A safer version of QString.mid(pos, len). This one returns "" instead of
* null when the postion equals the string length.
* null when the position equals the string length.
* @param str String to take a substring from.
* @param pos Position to start the substring from.
* @param len Length of substring.
Expand Down