From 362648c5b91ebd658426be10672363c449724377 Mon Sep 17 00:00:00 2001 From: KOTP Date: Sun, 29 Mar 2026 14:57:13 -0500 Subject: [PATCH] Fix Floats concept title --- concepts/floating-point-numbers/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/floating-point-numbers/introduction.md b/concepts/floating-point-numbers/introduction.md index cbf3e74bdb..e30fa1e5b9 100644 --- a/concepts/floating-point-numbers/introduction.md +++ b/concepts/floating-point-numbers/introduction.md @@ -1,4 +1,4 @@ -# Loops +# Floating point numbers A floating-point number is a number with zero or more digits behind the decimal separator. Examples are `4.0`, `0.1`, `3.14`, `-6.4` `16.984025` and `1024.0`. In Ruby, floating-point numbers are implemented through the [Float][Float] class.