From 06c3d7bd7e1ec3cb5bc0d45a6f8df8770a3c84d1 Mon Sep 17 00:00:00 2001 From: Toshio Sekiya Date: Wed, 27 Jan 2021 17:26:37 +0900 Subject: [PATCH] Bug fixed. --- gfm/sec11.md | 3 ++- src/sec11.src.md | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/gfm/sec11.md b/gfm/sec11.md index b699da5..2486c65 100644 --- a/gfm/sec11.md +++ b/gfm/sec11.md @@ -156,7 +156,8 @@ The type of the object is the second argument of `g_signal_newv`. The relationship between the signal and object (type) is made up when the signal is generated. `g_signal_emit` is used to emit the signal. -The following is extract from `tfetexties.c`. +The following lines are extracted from `tfetextview.c`. +Each line is quoted from a different line. ~~~C g_signal_emit (tv, tfe_text_view_signals[CHANGE_FILE], 0); diff --git a/src/sec11.src.md b/src/sec11.src.md index ebbddaf..e3a9726 100644 --- a/src/sec11.src.md +++ b/src/sec11.src.md @@ -126,7 +126,8 @@ The type of the object is the second argument of `g_signal_newv`. The relationship between the signal and object (type) is made up when the signal is generated. `g_signal_emit` is used to emit the signal. -The following is extract from `tfetexties.c`. +The following lines are extracted from `tfetextview.c`. +Each line is quoted from a different line. ~~~C g_signal_emit (tv, tfe_text_view_signals[CHANGE_FILE], 0);