From 8c3715fb13b1e42aca40ffed196ce15865d6202c Mon Sep 17 00:00:00 2001 From: CLIF Team Date: Mon, 10 Jun 2024 14:25:12 -0700 Subject: [PATCH] Typo suprise -> surprise PiperOrigin-RevId: 642022501 --- clif/python/primer.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clif/python/primer.md b/clif/python/primer.md index a0207560..e289fc2e 100644 --- a/clif/python/primer.md +++ b/clif/python/primer.md @@ -374,9 +374,9 @@ object or a property-accessed object of a container type (`list`, `dict`, is a copy of the C++ container and mutations to the object on Python side are not reflected in C++. -To avoid such non-pythonic suprises, use the _unproperty_ feature to expose a -container field to Python as getter and setter methods. That way calling -the _setter_ explicitly describes when to update the C++ field value. +To avoid such non-pythonic surprises, use the *unproperty* feature to expose a +container field to Python as getter and setter methods. That way calling the +*setter* explicitly describes when to update the C++ field value. ## Wrapping Functions