From cca93e957d18ebfcea1f3323b9db6416a7d3f843 Mon Sep 17 00:00:00 2001
From: Tamas Gal <himself@tamasgal.com>
Date: Fri, 13 Oct 2023 12:31:34 +0200
Subject: [PATCH] Use different modules in the example

---
 docs/src/manual/detector.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/src/manual/detector.md b/docs/src/manual/detector.md
index 7425896e..0e8c0615 100644
--- a/docs/src/manual/detector.md
+++ b/docs/src/manual/detector.md
@@ -92,13 +92,13 @@ To access a module with a given module ID, one can either use the dictionary or
 index the [`Detector`](@ref) directly, which is the recommended way:
 
 ```@example 1
-detector_module = det[808976933]
+detector_module = det[808468425]
 ```
 
 Or for a given string and floor:
 
 ```@example 1
-det[15, 13]
+det[3, 15]
 ```
 
 It is possible to select all modules for a given floor on all strings using  the `:` syntax. Here
@@ -112,7 +112,7 @@ Another way is using the `getmodule(d::Detector, string::Integer, floor::Integer
 to access a module on a given string and floor:
 
 ```@example 1
-detector_module = getmodule(det, 15, 13)
+detector_module = getmodule(det, 3, 15)
 ```
 
 ### PMTs
-- 
GitLab