Skip to content
This repository was archived by the owner on Jan 23, 2024. It is now read-only.

Commit 2bbc6aa

Browse files
mctavishcopybara-github
authored andcommitted
Fix some typos.
PiperOrigin-RevId: 247469722 Change-Id: I43e56eacc93dbde4e4450ec56f40e35576e7e43c
1 parent 4b4f28a commit 2bbc6aa

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/googleclouddebugger/capture_collector.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -400,12 +400,12 @@ def CaptureNamedVariable(self, name, value, depth, limits):
400400
name = str(id(name))
401401
self._total_size += len(name)
402402

403-
v = (self.CheckDataVisiblity(value) or
403+
v = (self.CheckDataVisibility(value) or
404404
self.CaptureVariable(value, depth, limits))
405405
v['name'] = name
406406
return v
407407

408-
def CheckDataVisiblity(self, value):
408+
def CheckDataVisibility(self, value):
409409
"""Returns a status object if the given name is not visible.
410410
411411
Args:

src/googleclouddebugger/gcp_hub_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def filter(self, record):
146146
def InitializeDebuggeeLabels(self, flags):
147147
"""Initialize debuggee labels from environment variables and flags.
148148
149-
The caller passes all the flags that the the debuglet got. This function
149+
The caller passes all the flags that the debuglet got. This function
150150
will only use the flags used to label the debuggee. Flags take precedence
151151
over environment variables.
152152

src/googleclouddebugger/glob_data_visibility_policy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
"""Determines the visibilty of python data and symbols.
15+
"""Determines the visibility of python data and symbols.
1616
1717
Example Usage:
1818

0 commit comments

Comments
 (0)