From da4f1ff4c8038ac2dccec7ec695453e32696139b Mon Sep 17 00:00:00 2001 From: Keve Nagy <6276321+KeveNagy@users.noreply.github.com> Date: Mon, 3 Jan 2022 17:21:42 +0100 Subject: Small correction for vala.html.markdown (#4160) On line 486, replaced &i with &more. While at it, on lines 497-503 I also transformed all the "here" hyperlinks to their most obvious replacements. --- vala.html.markdown | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'vala.html.markdown') diff --git a/vala.html.markdown b/vala.html.markdown index 393578b0..06d6dedc 100755 --- a/vala.html.markdown +++ b/vala.html.markdown @@ -483,7 +483,7 @@ pointer_obj->some_data; // Returns some_data delete pointer_obj; int more = 57; -int* more_pointer = &i; // & = address-of +int* more_pointer = &more; // & = address-of int indirection_demo = more_pointer*; // indirection // Profiles: affect which Vala features are avaliable and which libraries the @@ -494,10 +494,10 @@ int indirection_demo = more_pointer*; // indirection // Use "--profile=whatever" when compiling. ``` -* More Vala documentation can be found [here](https://valadoc.org/). +* More [Vala documentation](https://valadoc.org/). * [Alternate construction syntax](https://wiki.gnome.org/Projects/Vala/Tutorial#GObject-Style_Construction) similar to GObject -* More on contract programming [here](http://en.wikipedia.org/wiki/Contract_programming) -* Collections library can be found [here](https://wiki.gnome.org/Projects/Vala/Tutorial#Collections) +* More on [contract programming](http://en.wikipedia.org/wiki/Contract_programming) +* [Collections library](https://wiki.gnome.org/Projects/Vala/Tutorial#Collections) * [Multithreading](https://wiki.gnome.org/Projects/Vala/Tutorial#Multi-Threading) -* Read about building GUIs with GTK+ and Vala [here](http://archive.is/7C7bw). -* D-Bus [integration](https://wiki.gnome.org/Projects/Vala/Tutorial#D-Bus_Integration) +* Read about [building GUIs with GTK+ and Vala](http://archive.is/7C7bw). +* [D-Bus integration](https://wiki.gnome.org/Projects/Vala/Tutorial#D-Bus_Integration) -- cgit v1.2.3 From bba9f7df211d63293e2a957872d156a0a6dfcd48 Mon Sep 17 00:00:00 2001 From: Marcel Ribeiro-Dantas Date: Sat, 10 Dec 2022 12:05:34 -0300 Subject: Fixes typos in many different English articles Signed-off-by: Marcel Ribeiro-Dantas --- vala.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vala.html.markdown') diff --git a/vala.html.markdown b/vala.html.markdown index 06d6dedc..739e0fda 100755 --- a/vala.html.markdown +++ b/vala.html.markdown @@ -486,7 +486,7 @@ int more = 57; int* more_pointer = &more; // & = address-of int indirection_demo = more_pointer*; // indirection -// Profiles: affect which Vala features are avaliable and which libraries the +// Profiles: affect which Vala features are available and which libraries the // C-code will use. // - gobject (default) // posix -- cgit v1.2.3 From 327001f58739489b41f6b1f7bbc8be900847b381 Mon Sep 17 00:00:00 2001 From: Boris Verkhovskiy Date: Thu, 4 Apr 2024 04:20:22 -0700 Subject: Normalize file permissions these files do not need to be executable --- vala.html.markdown | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 vala.html.markdown (limited to 'vala.html.markdown') diff --git a/vala.html.markdown b/vala.html.markdown old mode 100755 new mode 100644 -- cgit v1.2.3