You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sr...@apache.org on 2022/07/26 10:57:02 UTC

[plc4x] branch develop updated: chore: fixed refactoring typo [skip ci]

This is an automated email from the ASF dual-hosted git repository.

sruehl pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new cf5407fa6 chore: fixed refactoring typo [skip ci]
cf5407fa6 is described below

commit cf5407fa633da0217d78f4984a0be04da1e235d6
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Tue Jul 26 12:56:56 2022 +0200

    chore: fixed refactoring typo [skip ci]
---
 plc4go/internal/spi/PlcFieldHandler.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plc4go/internal/spi/PlcFieldHandler.go b/plc4go/internal/spi/PlcFieldHandler.go
index 930997a19..4eebbd993 100644
--- a/plc4go/internal/spi/PlcFieldHandler.go
+++ b/plc4go/internal/spi/PlcFieldHandler.go
@@ -22,6 +22,6 @@ package spi
 import "github.com/apache/plc4x/plc4go/pkg/api/model"
 
 type PlcFieldHandler interface {
-	// ParseQuery Parser function to parse query strings for a given driver and produce plcField instances from that
+	// ParseQuery Parser function to parse query strings for a given driver and produce PlcField instances from that
 	ParseQuery(query string) (model.PlcField, error)
 }