docs: replace the less commonly used "::" with "."

This commit is contained in:
Kirill Primak 2023-10-02 22:06:44 +03:00
parent 0fdbdc36c0
commit a09d649439
19 changed files with 42 additions and 42 deletions

View file

@ -10,7 +10,7 @@
struct tablet_tool {
struct wlr_tablet_tool wlr_tool;
struct libinput_tablet_tool *handle;
struct wl_list link; // wlr_libinput_input_device::tablet_tools
struct wl_list link; // wlr_libinput_input_device.tablet_tools
};
const struct wlr_tablet_impl libinput_tablet_impl = {

View file

@ -39,7 +39,7 @@ struct tablet_tool {
};
struct tablet_pad_ring {
struct wl_list link; // tablet_pad_group::rings
struct wl_list link; // tablet_pad_group.rings
/* static */
struct zwp_tablet_pad_ring_v2 *ring;
struct tablet_pad_group *group;
@ -52,7 +52,7 @@ struct tablet_pad_ring {
};
struct tablet_pad_strip {
struct wl_list link; // tablet_pad_group::strips
struct wl_list link; // tablet_pad_group.strips
struct zwp_tablet_pad_strip_v2 *strip;
struct tablet_pad_group *group;
size_t index;
@ -69,8 +69,8 @@ struct tablet_pad_group {
struct wlr_tablet_pad_group group;
struct wl_list rings; // tablet_pad_ring::link
struct wl_list strips; // tablet_pad_strips::link
struct wl_list rings; // tablet_pad_ring.link
struct wl_list strips; // tablet_pad_strips.link
};
static void handle_tablet_pad_ring_source(void *data,
@ -257,7 +257,7 @@ static void handle_tablet_pad_group_mode_switch(void *data,
}
static void destroy_tablet_pad_group(struct tablet_pad_group *group) {
/* No need to remove the ::link on strips rings as long as we do *not*
/* No need to remove the link on strips rings as long as we do *not*
* wl_list_remove on the wl_groups ring/strip attributes here */
struct tablet_pad_ring *ring, *tmp_ring;
wl_list_for_each_safe(ring, tmp_ring, &group->rings, link) {