From 1d795086d1096d32def19aba40f1b739e4da0756 Mon Sep 17 00:00:00 2001 From: Vaivaswatha Nagaraj Date: Fri, 16 Aug 2024 14:10:22 +0530 Subject: [PATCH] fix typo in doc --- src/value.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/value.rs b/src/value.rs index 174059b..495e244 100644 --- a/src/value.rs +++ b/src/value.rs @@ -1,5 +1,5 @@ -//! # SSA [Value]s: Use-Def and Def-Use Graph. -//! At the core of the IR infrastructure are SSA use-def chains. +//! SSA [Value]s: Use-Def and Def-Use Graph. +//! At the core of the IR infrastructure are SSA def-use and use-def chains. //! Use-def and def-use chains are composed of four key structures: //! - [Value] describes a value definition, either a block argument, or an operation result. //! - [`Ptr`] describes a block definition.