Merge pull request #2357 from kuzkry:obsolete-documentation

PiperOrigin-RevId: 261343928
This commit is contained in:
Gennadiy Civil
2019-08-02 13:26:55 -04:00
8 changed files with 22 additions and 30 deletions

View File

@@ -540,10 +540,10 @@ class Predicate%(n)sTest : public testing::Test {
}
}
// true if the test function is expected to run to finish.
// true iff the test function is expected to run to finish.
static bool expected_to_finish_;
// true if the test function did run to finish.
// true iff the test function did run to finish.
static bool finished_;
""" % DEFS
@@ -572,12 +572,12 @@ typedef Predicate%(n)sTest ASSERT_PRED%(n)sTest;
"""Returns the test for a predicate assertion macro.
Args:
use_format: true if the assertion is a *_PRED_FORMAT*.
use_assert: true if the assertion is a ASSERT_*.
expect_failure: true if the assertion is expected to fail.
use_functor: true if the first argument of the assertion is
use_format: true iff the assertion is a *_PRED_FORMAT*.
use_assert: true iff the assertion is a ASSERT_*.
expect_failure: true iff the assertion is expected to fail.
use_functor: true iff the first argument of the assertion is
a functor (as opposed to a function)
use_user_type: true if the predicate functor/function takes
use_user_type: true iff the predicate functor/function takes
argument(s) of a user-defined type.
Example:

View File

@@ -161,7 +161,7 @@ class Token:
def StartsWith(lines, pos, string):
"""Returns True if the given position in lines starts with 'string'."""
"""Returns True iff the given position in lines starts with 'string'."""
return lines[pos.line][pos.column:].startswith(string)

View File

@@ -631,7 +631,7 @@ class VersionControlSystem(object):
new_content: For text files, this is empty. For binary files, this is
the contents of the new file, since the diff output won't contain
information to reconstruct the current file.
is_binary: True if the file is binary.
is_binary: True iff the file is binary.
status: The status of the file.
"""