From e87a2d96c734698c9626f7e99f0ab00328e5f162 Mon Sep 17 00:00:00 2001 From: Christoph Ulshoefer Date: Fri, 19 Aug 2022 12:26:33 -0700 Subject: [PATCH] Fix typo in types.md Summary: what the title says Created from CodeHub with https://fburl.com/edit-in-codehub Differential Revision: D38871236 fbshipit-source-id: db1d8de83e7ad725dd877bcbeaaebaa4d899329c --- docs/types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/types.md b/docs/types.md index 508b1412d..c54c78570 100644 --- a/docs/types.md +++ b/docs/types.md @@ -45,7 +45,7 @@ In addition to these built-in types, we provide records and enumerations as spec ## Record types -We provides a `record` type, representing a set of named values, each with their own type. For example: +We provide a `record` type, representing a set of named values, each with their own type. For example: ```python MyRecord = record(host=str.type, port=int.type)